From 0f296e19856366d6cebc4317a454c39db9d67baa Mon Sep 17 00:00:00 2001 From: "kfraser@dhcp93.uk.xensource.com" Date: Tue, 20 Jun 2006 13:45:23 +0100 Subject: [PATCH] [LINUX] Another fix to i386 mfn_to_pfn(). Signed-off-by: Keir Fraser --- linux-2.6-xen-sparse/include/asm-i386/mach-xen/asm/page.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-2.6-xen-sparse/include/asm-i386/mach-xen/asm/page.h b/linux-2.6-xen-sparse/include/asm-i386/mach-xen/asm/page.h index 1b2494047a..a31f62f849 100644 --- a/linux-2.6-xen-sparse/include/asm-i386/mach-xen/asm/page.h +++ b/linux-2.6-xen-sparse/include/asm-i386/mach-xen/asm/page.h @@ -106,7 +106,7 @@ static inline unsigned long mfn_to_pfn(unsigned long mfn) " .long 1b,3b\n" ".previous" : "=r" (pfn) - : "m" (machine_to_phys_mapping[mfn]), "i" (max_mapnr) ); + : "m" (machine_to_phys_mapping[mfn]), "ir" (max_mapnr) ); return pfn; } -- 2.30.2